Dear Statalisters,
I have a panel data and I am estimating a probit model with an interaction, both of variables are binary (either 0 or 1). I am confused with the fact that the coefficient of the interaction term is insignificant, whereas marginal effects are significant. I am aware that this is because these are two different hypotheses being tested, however, the question I have is: does the insignificant coefficient of interaction somehow obstruct my marginal effects results? Can I safely claim that the probability of y is 19.4% at A=1 and B=1 ?
Looking forward for any comments and suggestions,
Maiia
I have a panel data and I am estimating a probit model with an interaction, both of variables are binary (either 0 or 1). I am confused with the fact that the coefficient of the interaction term is insignificant, whereas marginal effects are significant. I am aware that this is because these are two different hypotheses being tested, however, the question I have is: does the insignificant coefficient of interaction somehow obstruct my marginal effects results? Can I safely claim that the probability of y is 19.4% at A=1 and B=1 ?
Code:
. probit y ib0.A##ib0.B, cluster(panelvar) allbaselevels Iteration 0: log pseudolikelihood = -71.420508 Iteration 1: log pseudolikelihood = -67.999869 Iteration 2: log pseudolikelihood = -67.985199 Iteration 3: log pseudolikelihood = -67.985199 Probit regression Number of obs = 140 Wald chi2(3) = 8.36 Prob > chi2 = 0.0391 Log pseudolikelihood = -67.985199 Pseudo R2 = 0.0481 (Std. Err. adjusted for 48 clusters in fundmanagerid) --------------------------------------------------------------------------------- | Robust y | Coef. Std. Err. z P>|z| [95% Conf. Interval] ----------------+---------------------------------------------------------------- A | 0 | 0 (base) 1 | -.1303176 .3362637 -0.39 0.698 -.7893823 .528747 | B | 0 | 0 (base) 1 | -.7823049 .2881906 -2.71 0.007 -1.347148 -.2174618 | A#B | 0 0 | 0 (base) 0 1 | 0 (base) 1 0 | 0 (base) 1 1 | .4094472 .4417938 0.93 0.354 -.4564527 1.275347 | _cons | -.3584588 .2390024 -1.50 0.134 -.8268948 .1099772 --------------------------------------------------------------------------------- . margins A#B Adjusted predictions Number of obs = 140 Model VCE : Robust Expression : Pr(y), predict() --------------------------------------------------------------------------------- | Delta-method | Margin Std. Err. z P>|z| [95% Conf. Interval] ----------------+---------------------------------------------------------------- A#B | 0 0 | .36 .089415 4.03 0.000 .1847498 .5352502 0 1 | .1269841 .040389 3.14 0.002 .0478231 .2061451 1 0 | .3125 .0925791 3.38 0.001 .1310483 .4939517 1 1 | .1944444 .0603 3.22 0.001 .0762586 .3126303 ---------------------------------------------------------------------------------
Maiia
Comment